-
Notifications
You must be signed in to change notification settings - Fork 183
Don't fail if tmp files have been deleted #122
Conversation
I had a case where files in `/tmp` were deleted I get the exception on line 118: `File does not exists: /tmp/xxxxx`. If we are going to catch it, we may as well recover from it. Especially since the file is just a cache.
Thanks for your pull request. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). 📝 Please follow instructions at https://git.k8s.io/community/CLA.md#the-contributor-license-agreement to sign the CLA. It may take a couple minutes for the CLA signature to be fully registered; after that, please reply here with a new comment and we'll verify. Thanks.
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: zach-nervana If they are not already assigned, you can assign the PR to them by writing The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/assign @roycaihw |
Codecov Report
@@ Coverage Diff @@
## master #122 +/- ##
=======================================
Coverage 92.11% 92.11%
=======================================
Files 13 13
Lines 1217 1217
=======================================
Hits 1121 1121
Misses 96 96
Continue to review full report at Codecov.
|
It's known issue, please take a look at #38 |
Issues go stale after 90d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
Stale issues rot after 30d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
Rotten issues close after 30d of inactivity. Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
@fejta-bot: Closed this PR. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
I had a case where files in
/tmp
were deleted I get the exception on line 118:File does not exists: /tmp/xxxxx
. If we are going to catch it, we may as well recover from it. Especially since the file is just a cache.